home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / PRGMMING / PBC30.ZIP / INT2DATS.BAS < prev    next >
Encoding:
BASIC Source File  |  1994-11-12  |  695 b   |  17 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        PBClone  Copyright (c) 1990-1994  Thomas G. Hanlin III        |
  4. '   |                                                                      |
  5. '   +----------------------------------------------------------------------+
  6.  
  7.  
  8.    DECLARE SUB DateN2S (MonthNr%, DayNr%, YearNr%, DateSt$)
  9.    DECLARE SUB Int2Date (MonthNr%, DayNr%, YearNr%, BYVAL SqueezedDate%)
  10.  
  11. FUNCTION Int2DateSt$ (DateNr%)
  12.    Int2Date M%, D%, Y%, DateNr%
  13.    DateSt$ = "xx-xx-xxxx"
  14.    DateN2S M%, D%, Y%, DateSt$
  15.    Int2DateSt$ = DateSt$
  16. END FUNCTION
  17.